Function Reference

AscW

Returns the unicode code of a character.

AscW ( "char" )

 

Parameters

char The character to get the code for. If a string is used, the code for the first character is given.

 

Return Value

Returns the unicode code of the specified char.

 

Remarks

See the Appendix for a complete ASCII table.

 

Related

Asc, Chr, ChrW

 

Example


$code = AscW("A")
MsgBox(0, "Unicode code for A:", $code)